26d4f2bd0d3350222e5bafe6571989af8c9a09aa,src/main/java/com/whoknows/security/SecurityConfiguration.java,SecurityConfiguration,configure,#HttpSecurity#,43

Before Change


				.antMatchers("/search/**").permitAll()
				.antMatchers("/tag/**").permitAll()
				.antMatchers("/topic/**").permitAll()
				.antMatchers("/img/**").permitAll()
				.antMatchers("/user/current").permitAll()
				.antMatchers("/hot/**").permitAll()
				.antMatchers("/user/**").permitAll()
				.antMatchers("/reply/**").permitAll()
				.antMatchers("/follow/**").permitAll()
				.antMatchers("/like/**").permitAll()
				.antMatchers("/comment/**").permitAll()
				.antMatchers("/vip/**").permitAll()

After Change


				.antMatchers("/search/**").authenticated()
				.antMatchers("/tag/**").authenticated()
				.antMatchers("/topic/**").authenticated()
				.antMatchers(HttpMethod.POST, "/img/**").authenticated()
				.antMatchers("/hot/**").authenticated()
				.antMatchers("/user/**").authenticated()
				.antMatchers("/reply/**").authenticated()
				.antMatchers("/follow/**").authenticated()
				.antMatchers("/like/**").authenticated()
				.antMatchers("/comment/**").authenticated()
				.antMatchers("/vip/**").authenticated()
				.antMatchers("/paper/**").authenticated()